home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Atlanta_1990 / Atlanta-Devcon.1 / Libraries / Commodities / Blank / Makefile < prev    next >
Encoding:
Makefile  |  1992-08-26  |  632 b   |  30 lines

  1. # NATIVE BUILD ONLY
  2.  
  3. SU=lib:c.o
  4. CC=lc
  5. xCCF=-csf -v -o
  6. CCF=-csf -v -b0 -iinclude: -o
  7. LN=blink
  8. LNF=NODEBUG SMALLCODE SMALLDATA DEFINE __main=__tinymain
  9. LIBS=lib:lc.lib+lib:amiga.lib+lib:debug.lib
  10.  
  11. INC=/common/local.h app.h
  12. OBJ=main.o cx.o window.o app.o
  13.  
  14. blank.ld: $(OBJ)
  15.    $(CC) $(CCF)revision.o revision.c
  16.    delete blank_rev.i
  17.    $(LN) $(LNF) FROM $(SU) $(OBJ) revision.o LIB $(LIBS) TO $@
  18.  
  19. main.o : /common/main.c $(INC)
  20.    $(CC) $(CCF)$@ /common/main.c
  21.  
  22. cx.o : /common/cx.c $(INC)
  23.    $(CC) $(CCF)$@ /common/cx.c
  24.  
  25. window.o : /common/window.c $(INC)
  26.    $(CC) $(CCF)$@ /common/window.c
  27.  
  28. app.o : app.c app.h
  29.    $(CC) $(CCF)$@ app.c
  30.